This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Samuel Umlupulgon 16.Jan.04 09:22 PM a Web browser Domino Designer 6.0.3 Windows 2000
I'm trying to put some HTML into every outgoing email my client sends (formatted text and a URL reference to an image on the corporate server).
Thanks to Rod Whitely, I've figured out to get HTML in an outbound email using CreateMIMEEntity. But the code I use to do this tries to create a brand new Body field, which of course results in an error (Item body already exists) when it runs since there's already a Body field on the Memo.
How do I concatenate the new MIME Entity with my existing Body field?
Here's my sample code, in the QuerySave event of my memo:
Sub Querysend(Source As Notesuidocument, Continue As Variant)
Dim doc As NotesDocument
Set doc = Source.Document